1f797d675caefde1853038036209d8090a6e49bc,CoreComponents/src/org/sleuthkit/autopsy/corecomponents/DataContentViewerMedia.java,ExtractMedia,play,#,422

Before Change


                progressLabel.setText("Error buffering file");
                return;
            }
            playbin2.play(); // must play, then pause and get state to get duration.
            playbin2.pause();
            playbin2.getState();
            String duration = playbin2.queryDuration().toString();

After Change


                progressLabel.setText("Error buffering file");
                return;
            }
            synchronized(playbinLock) {
                playbin2.play(); // must play, then pause and get state to get duration.
                playbin2.pause();
                playbin2.getState();
                duration = playbin2.queryDuration().toString();